home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d16
/
winsql.arc
/
EXAMPLES.ARC
/
QUERY16.SQL
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1991-06-02
|
191 b
|
12 lines
create table temp (
pno char(6),
totqty integer
);
insert into temp (pno, totqty)
select pno, sum(qty) from sp group by pno;
select * from temp;
drop table temp;